Determinants - The Area Factor
Introduction
Determinants give us a single number that describes how a linear transformation changes area (in 2D) or volume (in 3D).
You already know that linear transformations stretch, shrink, flip, or rotate shapes. The determinant tells you how much the size changes.
Key ideas:
- A matrix represents a linear transformation.
- The determinant measures the “area scaling factor.”
- A determinant of $0$ means the transformation collapses space into a lower dimension.
Geometric Meaning of the Determinant
Think of a simple shape: a unit square.
Apply a matrix $A$ to it. The image is a parallelogram.
The determinant tells you:
- How much the area changes.
- Whether the transformation flips orientation (negative determinant).
- Whether the transformation collapses the shape (determinant $0$).
Visual intuition
- If $\det(A) = 2$, the area doubles.
- If $\det(A) = \tfrac12$, the area halves.
- If $\det(A) = -3$, the area triples and flips.
Computing Determinants in 2D
For a $2 \times 2$ matrix $$A = \begin{pmatrix} a & b \\ c & d \end{pmatrix},$$ the determinant is $$\det(A) = ad - bc.$$ Why this formula?
- The columns of $A$ are the images of the basis vectors.
- These two vectors form a parallelogram.
- The area of that parallelogram is $|ad - bc|$.
Quick examples
- $\begin{pmatrix} 1 & 0 \\ 0 & 1 \end{pmatrix}$ has determinant $1$ (no area change).
- $\begin{pmatrix} 2 & 0 \\ 0 & 2 \end{pmatrix}$ has determinant $4$ (area ×4).
- $\begin{pmatrix} 0 & 1 \\ 1 & 0 \end{pmatrix}$ has determinant $-1$ (flip).
Determinants and Orientation
Orientation is about “handedness.”
A positive determinant preserves orientation; a negative one reverses it.
Examples:
- Rotations: determinant $= 1$ (preserve orientation).
- Reflections: determinant $= -1$ (reverse orientation).
- Projections: determinant $= 0$ (destroy orientation by flattening).
Determinants in 3D (Briefly)
For a $3 \times 3$ matrix, the determinant measures volume scaling.
If $$\det(A) = 5,$$ then any 3D shape’s volume becomes 5 times larger after applying $A$.
You don’t need the full formula here — the geometric idea is what matters.
Why Determinants Matter
Determinants appear everywhere:
- Solving systems of equations
- Understanding invertibility
- Measuring area/volume change
- Understanding eigenvalues
- Describing orientation and reflections
A matrix is invertible iff its determinant is nonzero.
Calculator
Calculating the Determinant
- The determinant can be calculated using the $\operatorname{det}()$ function:
det([1, 2; 3, 4])
Exercises
- Compute the determinant of $$\begin{pmatrix} 3 & 1 \\ 2 & 4 \end{pmatrix}.$$
- The matrix $$A = \begin{pmatrix} 2 & 0 \\ 1 & 3 \end{pmatrix}$$ stretches area by what factor?
- True or false: A matrix with determinant $-2$ preserves orientation.
- A transformation sends the unit square to a parallelogram of area $7$.
What is $|\det(A)|$? - Compute the determinant of $$\begin{pmatrix} 0 & 5 \\ -2 & 1 \end{pmatrix}.$$
- A matrix has determinant $0$. What does this say about the area of the transformed unit square?
- Compute the determinant of $$\begin{pmatrix} 4 & 2 \\ 1 & 0 \end{pmatrix}.$$